home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Gold Collection / Software Vault - The Gold Collection (American Databankers) (1993).ISO / cdr04 / edv340.zip / LF.BAT < prev    next >
DOS Batch File  |  1992-09-17  |  404b  |  16 lines

  1. @echo off
  2. REM LF.BAT - Loads VGA fonts.  This should go in your \BATCH directory or
  3. REM somewhere along your path.  Also, change the file paths below to match
  4. REM your system.
  5.  
  6. if "%1" == "" goto help
  7. REM If there's an argument, we try to load it:
  8. c:\util\loadfont\loadfont c:\util\loadfont\%1.fnt
  9. goto end
  10.  
  11. :help
  12. REM no argument, list available fonts:
  13. dir c:\util\loadfont\*.fnt /w
  14.  
  15. :end
  16.